home *** CD-ROM | disk | FTP | other *** search
- CLS
- PRINT " DOOM 1.666"
- PRINT "PATCH DOOM.WAD TO FIX FLAG ERROR IS EPISODE 3, MISSION 9"
- PRINT "This patch fixes a MAP error that existed previously, but"
- PRINT "did not become apparent until the more precise engine of"
- PRINT "version 1.666 was released. What happened is that for"
- PRINT "Whatever reason, a sector in a room containing 2 Caco-"
- PRINT "demons and numerous Imps is tagged to a linedef on the"
- PRINT "bridge over the lava pit. This patch removes this flag"
- PRINT "so that the game will run normally."
- PRINT
- PRINT "If you are not using QBASIC or QuickBASIC, add sequential"
- PRINT "line numbers to each of these lines."
- PRINT
- PRINT "Run this file from within your DOOM directory. Remember to"
- PRINT "to first copy DOOM.WAD to a backup file, such as DOOM.BAK."
- PRINT
- LINE INPUT "Press the ENTER key to continue...",A$
- OPEN "R", 1, "DOOM.WAD"
- FIELD 1, 128 AS A$
- GET #1, 19955
- MID$(A$, 15, 1) = CHR$(0)
- PUT #1, 19955
- CLOSE #1
- PRINT "DAVID GOBEN, JANUARY 14, 1995 --- davgoben@ix.netcom.com"
-
-